home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000128_fdc@columbia.edu_Sat Mar 6 11:30:56 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc,comp.sys.mac.portables,comp.sys.mac.comm
  4. Subject: Re: Mac OS X iBook, Motorola v120e cell phone(Verizon) and C-Kermit?
  5. Followup-To: comp.protocols.kermit.misc
  6. Date: 6 Mar 2004 16:30:01 GMT
  7. Organization: Columbia University
  8. Lines: 35
  9. Message-ID: <slrnc4jv49.nt3.fdc@sesame.cc.columbia.edu>
  10. References: <404947FA.6B6EEDA5@DutchElmSt.invalid>
  11. Reply-To: fdc@columbia.edu
  12. NNTP-Posting-Host: sesame.cc.columbia.edu
  13. X-Trace: newsmaster.cc.columbia.edu 1078590601 13660 128.59.59.56 (6 Mar 2004 16:30:01 GMT)
  14. X-Complaints-To: postmaster@columbia.edu
  15. NNTP-Posting-Date: 6 Mar 2004 16:30:01 GMT
  16. User-Agent: slrn/0.9.7.4 (SunOS)
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14837 comp.sys.mac.portables:205384 comp.sys.mac.comm:346479
  18.  
  19. In article <404947FA.6B6EEDA5@DutchElmSt.invalid>, Mr. Uh Clem wrote:
  20. : I'm interested in using my iBook & cell phone for a simple modem
  21. : dial-up application.  (Not ISP, just plain character mode ala BBS.)
  22. : ...
  23. : If that works, what do I need to do to have C-Kermit dial out 
  24. : through it??  To be honest, I've only used Kermit as a telnet 
  25. : client, so I don't even know how to use it with the iBooks's 
  26. : internal modem (yet!)  
  27. Mac OS X's support for serial ports and modems remains largely a mystery
  28. to me; e.g. details about device names, lockfiles, and such are shrouded
  29. in obscurity.  To the best of my knowledge, however, the current version
  30. of C-Kermit does handle the port correctly, if you can find it and are
  31. allowed to open it, and should also handle any device that "looks like"
  32. a serial port.  The commands would be:
  33.  
  34.   set modem type xxxx   ; Type "?" for list, choose one.
  35.   set port /dev/xxx     ; Give the device name.
  36.   set speed 57600       ; Set the speed, "set speed ?" for choices.
  37.   set dial display on   ; To watch what happens during dialing.
  38.   dial 7654321          ; Dial the number.
  39.  
  40. If the call succeeds, Kermit enters CONNECT (terminal) mode automatically.
  41. For more information about any of the commands, type "help set modem",
  42. "help set port", "help dial", etc.
  43.  
  44. When trying this, be sure to pick up the working version of C-Kermit:
  45.  
  46.   http://www.columbia.edu/kermit/ckdaily.html
  47.  
  48. Although I haven't announced it yet, this is a Beta test for the next
  49. release, so if there are any difficulties with Mac OS X, I'd like to
  50. iron them out now (I don't have direct access to Mac OS X myself).
  51.  
  52. - Frank
  53.